home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / comm / bbs / maxsutils.lha / MaxUtils / FileListGen12.lha / nofragli.lha / Include / nofrag_protos.h < prev    next >
C/C++ Source or Header  |  1992-05-15  |  1KB  |  36 lines

  1. #ifndef CLIB_NOFRAG_PROTOS_H
  2. #define CLIB_NOFRAG_PROTOS_H 1
  3.  
  4. /*-- AutoRev header do NOT edit!
  5. *
  6. *   Program         :   nofrag_protos.h
  7. *   Copyright       :   ⌐ 1991 Jaba Development
  8. *   Author          :   Jan van den Baard
  9. *   Creation Date   :   06-Apr-91
  10. *   Current version :   2.2
  11. *   Translator      :   Several
  12. *
  13. *   REVISION HISTORY
  14. *
  15. *   Date          Version         Comment
  16. *   ---------     -------         ------------------------------------------
  17. *   13-Apr-92     2.2             Removed Mungwall hits.
  18. *   19-May-91     2.1             Added 'Vec' routines.
  19. *   06-Apr-91     1.1             Initial version!
  20. *
  21. *-- REV_END --*/
  22.  
  23. #ifndef LIBRARIES_NOFRAG_H
  24. #include <libraries/nofrag.h>
  25. #endif
  26.  
  27. /*--- version 1.1 names. ---*/
  28. struct MemoryChain *GetMemoryChain(ULONG blocksize);
  29. void *AllocItem(struct MemoryChain *chain, ULONG size, ULONG requirements);
  30. void FreeItem(struct MemoryChain *chain, void *memptr, ULONG size);
  31. void FreeMemoryChain(struct MemoryChain *chain, ULONG all);
  32. /*--- version 2.1 names. ---*/
  33. void *AllocVecItem(struct MemoryChain *chain, ULONG size, ULONG requirements);
  34. void FreeVecItem(struct MemoryChain *chain, void *memptr);
  35. #endif
  36.